home *** CD-ROM | disk | FTP | other *** search
/ NeXT Enterprise Objects Framework 1.1 / NeXT Enterprise Objects Framework 1.1.iso / NextDeveloper / Examples / EnterpriseObjects / QueryByExample / QBEPalette / DictionaryDataSource.h next >
Encoding:
Text File  |  1994-09-03  |  566 b   |  25 lines

  1. /* DictionaryDataSource.h:
  2.  * You may freely copy, distribute, and reuse the code in this example.
  3.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  4.  * fitness for any particular use.
  5.  *
  6.  * Written by EO Development Team
  7.  * Modified 07/20/94 Mai Nguyen
  8.  *
  9.  * Example of a non-database data source implementation
  10.  */
  11.  
  12.  
  13. #import <eoaccess/EODataSources.h>
  14. #import <foundation/NSDictionary.h>
  15.  
  16. @interface DictionaryDataSource : NSObject <EODataSources>
  17. {
  18.     NSMutableArray *array;
  19.     NSArray *keys;
  20. }
  21.  
  22. - initWithKeys: (NSArray *)keys;
  23.  
  24. @end
  25.